home *** CD-ROM | disk | FTP | other *** search
/ The Cannes Film Festival:… Century of World Cinema / The Cannes Film Festival.iso / mac / VFW10 / SOS.BAT < prev    next >
DOS Batch File  |  1994-06-14  |  3KB  |  70 lines

  1. @echo off
  2.  
  3. set DirWindows=%1
  4. if "%DirWindows%" == "" set DirWindows=c:\windows
  5.  
  6. echo -------------------------------------------------------------
  7. echo Procédure de désinstallation du runtime Video for Windows 1.1
  8. echo et de réinstallation du runtime Video for Windows 1.0
  9. echo -------------------------------------------------------------
  10. pause
  11.  
  12. if exist %DirWindows%\win.ini goto Suite
  13.    echo -----------------------------------------------------
  14.    echo Le répertoire d'installation de Windows n'est pas :
  15.    echo    c:\Windows
  16.    echo Veuillez relancer sos.bat avec comme paramètre le nom
  17.    echo du répertoire d'installation de Windows.
  18.    echo Exemple :
  19.    echo    SOS d:\Win
  20.    echo -----------------------------------------------------
  21.    goto Fin
  22. :Suite
  23.    del %DirWindows%\System\DISPDIB.DLL  > Nul
  24.    del %DirWindows%\System\MSVIDEO.DLL  > Nul
  25.    del %DirWindows%\System\MCIAVI.DRV   > Nul
  26.    del %DirWindows%\System\MSVIDC.DRV   > Nul
  27.    del %DirWindows%\System\OLE2.REG     > Nul
  28.    del %DirWindows%\System\OLE2DISP.DLL > Nul
  29.    del %DirWindows%\System\OLE2NLS.DLL  > Nul
  30.    del %DirWindows%\System\ACMCMPRS.DLL > Nul
  31.    del %DirWindows%\System\AVICAP.DLL   > Nul
  32.    del %DirWindows%\System\AVIFILE.DLL  > Nul
  33.    del %DirWindows%\System\COMPOBJ.DLL  > Nul
  34.    del %DirWindows%\System\CTL3D.DLL    > Nul
  35.    del %DirWindows%\System\CLEANUP.REG  > Nul
  36.    del %DirWindows%\System\OLE2.DLL     > Nul
  37.    del %DirWindows%\System\OLE2PROX.DLL > Nul
  38.    del %DirWindows%\System\STORAGE.DLL  > Nul
  39.    del %DirWindows%\System\TYPELIB.DLL  > Nul
  40.    del %DirWindows%\System\IMAADPCM.ACM > Nul
  41.    del %DirWindows%\System\MAP_WIN.HLP  > Nul
  42.    del %DirWindows%\System\MSACM.DLL    > Nul
  43.    del %DirWindows%\System\MSACM.DRV    > Nul
  44.    del %DirWindows%\System\MSADPCM.ACM  > Nul
  45.    del %DirWindows%\System\ICCVID.DRV   > Nul
  46.    del %DirWindows%\System\INDEOV.DRV   > Nul
  47.    del %DirWindows%\System\IR21_R.DLL   > Nul
  48.    del %DirWindows%\System\IR30.DLL     > Nul
  49.    del %DirWindows%\System\MSRLE.DRV    > Nul
  50.    copy %DirWindows%\System\mmtask.tsk %DirWindows%\System\mmtask0.tsk > Nul
  51.    copy mmtask.tsk %DirWindows%\System > Nul
  52.  
  53.    echo --------------------------------------------------------------------------
  54.    echo Video for Windows 1.1 a été correctement désinstallé.
  55.    echo Nous allons maintenant procéder à l'installation de
  56.    echo Video for Windows 1.0
  57.    echo Pour cela, veuillez :
  58.    echo    1. Relancer Windows.
  59.    echo    2. Selectionner l'option "Exécuter..." du menu "Fichier" dans
  60.    echo       le gestionnaire de programme.
  61.    echo    3. Indiquer a:\setup (ou b:\Setup) dans le champ "Ligne de de commande"
  62.    echo       de la boîte de dialogue "Exécuter".
  63.    echo    4. Valider en cliquant sur le bouton "OK".
  64.    echo A l'issue de ces manipulations, Video for Windows 1.0 sera
  65.    echo de nouveau opérationnel sur votre disque.
  66.    echo --------------------------------------------------------------------------
  67. :Fin
  68.  
  69. set DirWindows=
  70.